home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1256 / conv.h_ / conv.h
C/C++ Source or Header  |  1997-04-18  |  859b  |  32 lines

  1. /* EasyCODE(C++) V5.1 03.03.1995 11:06:22 */
  2. /* EasyCODE O
  3. If=horizontal
  4. LevelNumbers=no
  5. LineNumbers=no
  6. ScreenFont=Courier New,,80,9220,-11,0,400,0,0,0,0,0,0,3,2,1,49
  7. PrinterFont=Courier New,,80,17414,-34,0,400,0,0,0,0,0,0,3,2,1,49
  8. LastLevelId=7 */
  9.  
  10. /* EasyCODE ( 1
  11.    Header file */
  12. #include "keyword.h"
  13. #include "keywid.h"
  14. #include "convio.h"
  15.  
  16. #define MAX_KEYWORDLEN      32
  17. #define NO_KEYWORD          ETF_LASTKEYWORD + 1
  18. #define ERROR_KEYWORD       ETF_LASTKEYWORD + 2
  19. #define EOF_KEYWORD         ETF_LASTKEYWORD + 3
  20.  
  21. char inbuf[I_BUFSIZE];
  22. int inbufPos;
  23. /* EasyCODE - */
  24. // --------------------------------------------
  25. // FORWARD DECLARATIONS
  26. // --------------------------------------------
  27.  
  28.    char GetChar();
  29.    int  GetKeyword(char* delimiter, char* contents);
  30.    void err_msg(int lineNum, char* text);
  31. /* EasyCODE ) */
  32.